home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr29 / memsize.zip / ABOUT.H < prev    next >
C/C++ Source or Header  |  1995-01-04  |  670b  |  28 lines

  1. /******************************************************************** ABOUT.H
  2.  *                                                                          *
  3.  *                       About Dialog definitions                           *
  4.  *                                                                          *
  5.  ****************************************************************************/
  6.  
  7. #ifndef ABOUT_H
  8. #define ABOUT_H
  9.  
  10. typedef struct
  11. {
  12.   SHORT id ;
  13.   HWND hwndHelp ;
  14. }
  15. ABOUT_PARMS, *PABOUT_PARMS ;
  16.  
  17. extern "C" 
  18. {
  19.   extern MRESULT EXPENTRY AboutProcessor  
  20.   (
  21.     HWND hwnd,
  22.     USHORT msg,
  23.     MPARAM mp1,
  24.     MPARAM mp2
  25.   ) ;
  26. }
  27. #endif
  28.